home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
tile
/
tiles.bas
< prev
next >
Wrap
BASIC Source File
|
1995-01-21
|
245b
|
12 lines
Option Explicit
'--------------------------------------------------
' TILES.BAS
'--------------------------------------------------
' data type used to store an x-y coordinate.
Type tPoint
X As Integer
Y As Integer
End Type